DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1EditableDataCollection<T> Class / GetLoadedItems Method / GetLoadedItems(Nullable<Int32>,Nullable<Int32>) Method
The initial index to start looking for loaded items.
The final index to stop looking for loaded items.

In This Topic
    GetLoadedItems(Nullable<Int32>,Nullable<Int32>) Method
    In This Topic
    Returns the items that has be loaded so far.
    Syntax
    'Declaration
     
    Public Overloads Overridable Function GetLoadedItems( _
       Optional ByVal fromIndex As Nullable(Of Integer), _
       Optional ByVal toIndex As Nullable(Of Integer) _
    ) As IEnumerable(Of ILoadedItem(Of T))
    public virtual IEnumerable<ILoadedItem<T>> GetLoadedItems( 
       Nullable<int> fromIndex,
       Nullable<int> toIndex
    )

    Parameters

    fromIndex
    The initial index to start looking for loaded items.
    toIndex
    The final index to stop looking for loaded items.
    See Also